div{
    width: 400px;
    margin: 20px auto; 
	/*Centre les div dans la page*/
    background-color: #777; 
	/*Fond gris*/
}

p{
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  text-align:center; 
  /*Texte centré horizontalement*/
  line-height: 100px; 
  /*Texte centré verticalement*/
  background-color: #0CC; 
  /*Fond bleu vert*/
}

.arrondi1{
    border-radius : 100px 250px 200px 300px / 10px 30px 70px 80px;
}
.arrondi2{
    border-radius : 80px 200px 160px 240px / 8px 24px 56px 64px;
}